File manager - Edit - /home/autoph/public_html/projects/app/Http/Controllers/API/v1/EmployeeUndertimeController.php
Back
<?php namespace App\Http\Controllers; namespace App\Http\Controllers\API\v1; use App\Http\Controllers\Controller; use App\Models\EmployeeUndertime; use App\Models\User; use App\Notifications\Undertime; use Exception; use Illuminate\Http\Request; use Illuminate\Http\Response; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Validator; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Notification; use Illuminate\Support\Facades\Storage; use Illuminate\Validation\Rule; use PHPUnit\Event\Code\Throwable; use Illuminate\Support\Str; class EmployeeUndertimeController extends Controller { /** * Display a listing of the resource. */ public function index(Request $request) { // $employee = Auth::user(); $keyword = $request->input('keyword', ''); $perPage = $request->input('per_page',PHP_INT_MAX); $sortBy = $request->input('sortBy', ''); $sortType = $request->input('sortType', ''); $data = EmployeeUndertime::with([ 'recommending' => fn($recommending) => $recommending->select('employee_id', 'asa_user_id', 'firstname', 'lastname'), 'approving'=> fn($approving) => $approving->select('employee_id', 'asa_user_id', 'firstname', 'lastname'), ]) ->select( 'id', 'employee_id', 'company_id', 'dealer_id', 'date', 'from_time', 'to_time', 'hours', 'attachment', 'description', 'denied_reason', 'status', 'recommending_id', 'allow_higher_approval', 'approver_id', 'recommended_at', 'approved_at', 'created_at' ) ->where(function ($query) use ($keyword) { $keyword = str_replace(" ", "%", $keyword); // $query->where('name', 'like', '%' . $keyword . '%'); }); if($employee->roles[0]['group_id'] != 1){ $data->where(['employee_id' => $employee->employee_id]); } if (!empty($sortBy) && !empty($sortType)) { $data = $data->orderBy($sortBy, $sortType); } $data = $data->paginate($perPage); $month = date('m'); $year = date('Y'); $totalUTForThisMonth = EmployeeUndertime::select(DB::raw("SUM(hours) as total_hours")) ->where(function($query) use ($month, $year) { $query->where(function($q) use ($month, $year) { $q->whereMonth('date', $month) ->whereYear('date', $year); }); }) ->where('enabled', 1) ->where('status', 2) ->where('employee_id', $employee->employee_id) ->first(); $totalUTForThisYear = EmployeeUndertime::select(DB::raw("SUM(hours) as total_hours")) ->where(function($query) use ($year) { $query->whereYear('date', $year); }) ->where('enabled', 1) ->where('status', 2) ->where('employee_id', $employee->employee_id) ->first(); $averageUTForThisMonth = EmployeeUndertime::select(DB::raw("SUM(hours) as total_hours")) ->where(function($query) use ($month, $year) { $query->where(function($q) use ($month, $year) { $q->whereMonth('date', $month) ->whereYear('date', $year); }); }) ->where('enabled', 1) ->where('status', 2) ->where('employee_id', $employee->employee_id) ->avg('hours') ?? 0; // Return 0 if no records found return response()->json([ 'data' => $data, 'total_ut_for_the_month' => $totalUTForThisMonth, 'total_ut_for_the_year' => $totalUTForThisYear, 'avg_ut_for_the_month' => number_format($averageUTForThisMonth, 1), ]); } public function getUndertimeList(Request $request) { // $employee = Auth::user(); $keyword = $request->input('keyword', ''); $perPage = $request->input('per_page',PHP_INT_MAX); $sortBy = $request->input('sortBy', ''); $sortType = $request->input('sortType', ''); $dealership_id = $request->input('dealership', null); $data = EmployeeUndertime::with([ 'recommending' => fn($recommending) => $recommending->select('employee_id', 'asa_user_id', 'firstname', 'lastname'), 'approving'=> fn($approving) => $approving->select('employee_id', 'asa_user_id', 'firstname', 'lastname'), 'employee'=> fn($employee) => $employee->select('employee_id', 'firstname', 'lastname'), ]) ->select( 'id', 'employee_id', 'company_id', 'dealer_id', 'date', 'from_time', 'to_time', 'hours', 'attachment', 'description', 'denied_reason', 'status', 'recommending_id', 'allow_higher_approval', 'approver_id', 'recommended_at', 'approved_at', 'created_at' ) ->where('status',2) ->where(function ($query) use ($keyword) { $keyword = str_replace(" ", "%", $keyword); // $query->where('name', 'like', '%' . $keyword . '%'); }); if($dealership_id) $data = $data->where('dealer_id', $dealership_id); $data = $data->paginate($perPage); return response()->json([ 'data' => $data, ]); } public function store(Request $request) { // dd(($request->transportation) ? 1 : 0); $user = Auth::user(); $validator = Validator::make($request->all(), [ 'date' => "required|date", 'from_time' => "required", 'to_time' => "required", ]); /** If validation fails return with error message */ if ($validator->fails()) { $errors = $validator->errors(); $first = $errors->getMessages(); return response()->json([ 'status' => false, 'message' => (reset($first))[0], 'errors' => $errors ], Response::HTTP_UNPROCESSABLE_ENTITY); } try { $allow_higher_approval = ($request->allow_higher_approval && $request->allow_higher_approval !== 'null' && $request->allow_higher_approval !== 'false' && trim($request->allow_higher_approval) !== '' ? 1 : 0); $attachmentName = $this->handleAttachment($request); $Status = EmployeeUndertime::create([ 'employee_id' => $user->employee_id, 'company_id' => $user->employees->company_id, 'dealer_id' => $user->employees->dealer_id, 'date' => $request->date, 'from_time' => $request->from_time, 'to_time' => $request->to_time, 'hours' => $request->hours, 'description' => $request->description, 'allow_higher_approval' => $allow_higher_approval, 'attachment' => $attachmentName, 'recommending_id' => $request->recommending_id, 'approver_id' => $request->approver_id, 'status' => 0, ]); DB::connection()->commit(); // Load the relationships $Status->load(['employee']); $email_to = $this->getEmployeeEmailData($request->recommending_id); Notification::send($email_to, new Undertime($Status)); return response()->json([ 'status' => true, 'message' => 'Saved successfully!', 'data' => $Status ],201); } catch (Throwable $e) { DB::connection()->rollback(); return response()->json([ 'status' => false, 'message' => 'Unable to process request. Please try again.', 'data' => $e->getMessage() ]); } } public function handleAttachment(Request $request) { if ($request->hasFile('attachment')) { $image = $request->file('attachment'); $attachmentName = time() . '_' . $image->getClientOriginalName(); $path = "employee-undertime/" . $attachmentName; if (Storage::disk('local')->put($path, file_get_contents($image))) { return $attachmentName; } throw new Exception('Unable to process attachment.'); } return ''; } public function update(Request $request) { // dd($request->all()); $id = $request->id; $data = EmployeeUndertime::where('id', $id)->first(); $user = Auth::user(); $validator = Validator::make($request->all(), [ 'date' => "required|date", 'from_time' => "required", 'to_time' => "required", ]); /** If validation fails return with error message */ if ($validator->fails()) { $errors = $validator->errors(); $first = $errors->getMessages(); return response()->json([ 'status' => false, 'message' => (reset($first))[0], 'errors' => $errors ], Response::HTTP_UNPROCESSABLE_ENTITY); } $attachment_name = $request->attachment; if($data->attachment != $request->attachment) { $attachment_file_path = 'employee-undertime/' . $data->attachment; if(Storage::exists($attachment_file_path)) { Storage::delete($attachment_file_path); } if($request->hasFile('attachment')) { $image = $request->file('attachment'); $attachment_name = time().'_'.$image->getClientOriginalName(); $path = "employee-undertime/".$attachment_name; if(!Storage::disk('local')->put($path, file_get_contents($image))) { return response()->json(['message'=> "Failed to upload attachment"],304); } } else { $attachment_name = null; } } DB::connection()->beginTransaction(); try { $allow_higher_approval = ($request->allow_higher_approval && $request->allow_higher_approval !== 'null' && $request->allow_higher_approval !== 'false' && trim($request->allow_higher_approval) !== '' ? 1 : 0); $data->employee_id = $user->employee_id; $data->date = $request->date; $data->from_time = $request->from_time; $data->to_time = $request->to_time; $data->hours = $request->hours; $data->description = $request->description; $data->allow_higher_approval = $allow_higher_approval; $data->attachment = $attachment_name; $data->save(); DB::connection()->commit(); return response()->json([ 'status' => true, 'message' => 'Saved successfully!', 'data' => $data ],201); } catch (Throwable $e) { DB::connection()->rollback(); return response()->json([ 'status' => false, 'message' => 'Unable to process request. Please try again.', 'data' => $e->getMessage() ]); } } public function destroy(int $id) { $data = EmployeeUndertime::find($id); if(!$data) { return response()->json(['message' => "Record not found!"],204); } DB::connection()->beginTransaction(); $data->delete(); DB::connection()->commit(); return response()->json(['message' => "Record successfully deleted!"],201); } public function removeAttachment(Request $request) { $id = $request->id; $attachment = $request->attachment; $data = EmployeeUndertime::where('id', $id)->first(); $data->attachment = NULL; $data->save(); DB::connection()->commit(); $attachment_file_path = 'employee-undertime/' . $request->attachment; if(Storage::exists($attachment_file_path)) { Storage::delete($attachment_file_path); } return response()->json([ 'status' => true, 'message' => 'Saved successfully!', 'data' => $data ],201); } public function getEmployeeEmailData($id){ return User::where('employee_id', '=', $id)->first(); } }
| ver. 1.4 |
.
| PHP 8.1.32 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings